home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / giochi / amigainf.lha / Inform / examples / shell.inf < prev    next >
Text File  |  1995-08-02  |  618b  |  24 lines

  1. ! ----------------------------------------------------------------------------
  2. !  And when he hath the kernel eat,
  3. !    Who doth not fling away the Shell?  - John Donne, "Community"
  4. ! ----------------------------------------------------------------------------
  5.  
  6. Constant Story "SHELL";
  7. Constant Headline "^An Interactive Skeleton^\
  8.              Copyright (c) 1994 by (your name here).^";
  9.  
  10. Include "Parser";
  11. Include "VerbLib";
  12.  
  13. Object Blank_Room "Blank Room"
  14.   with description "An empty room."
  15.   has  light;
  16.  
  17. [ Initialise;
  18.   location = Blank_Room;
  19.   print "^^^^^Welcome to the shell...^^";
  20. ];
  21.  
  22. Include "Grammar";
  23. end;
  24.